home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / backup / backup.dfm / backup.txt
Encoding:
Text File  |  1995-12-22  |  2.3 KB  |  133 lines

  1. object BackupDlg: TBackupDlg
  2.   Left = 309
  3.   Top = 131
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsDialog
  6.   Caption = 'Backup Procedure'
  7.   ClientHeight = 328
  8.   ClientWidth = 424
  9.   Font.Color = clWindowText
  10.   Font.Height = -17
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   PixelsPerInch = 120
  14.   OnActivate = FormActivate
  15.   TextHeight = 16
  16.   object Label1: TLabel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 82
  20.     Height = 16
  21.     Caption = 'Source Path:'
  22.   end
  23.   object lblSource: TLabel
  24.     Left = 120
  25.     Top = 8
  26.     Width = 297
  27.     Height = 16
  28.     AutoSize = False
  29.     Caption = 'c:\cw_apps\backup'
  30.     WordWrap = True
  31.   end
  32.   object Label2: TLabel
  33.     Left = 8
  34.     Top = 32
  35.     Width = 107
  36.     Height = 16
  37.     Caption = 'Desination Path:'
  38.   end
  39.   object lblDestination: TLabel
  40.     Left = 120
  41.     Top = 32
  42.     Width = 297
  43.     Height = 16
  44.     AutoSize = False
  45.     Caption = 'c:\'
  46.     WordWrap = True
  47.   end
  48.   object lblInVisible: TLabel
  49.     Left = 344
  50.     Top = 8
  51.     Width = 72
  52.     Height = 16
  53.     Caption = 'lblInVisible'
  54.     Visible = False
  55.   end
  56.   object DirList: TDirectoryListBox
  57.     Left = 8
  58.     Top = 56
  59.     Width = 145
  60.     Height = 217
  61.     DirLabel = lblSource
  62.     FileList = FList
  63.     ItemHeight = 16
  64.     TabOrder = 0
  65.     OnChange = DirListChange
  66.   end
  67.   object FList: TFileListBox
  68.     Left = 160
  69.     Top = 56
  70.     Width = 145
  71.     Height = 217
  72.     ItemHeight = 16
  73.     TabOrder = 1
  74.   end
  75.   object btnOK: TBitBtn
  76.     Left = 312
  77.     Top = 56
  78.     Width = 105
  79.     Height = 33
  80.     Caption = 'C&opy'
  81.     TabOrder = 2
  82.     OnClick = btnOKClick
  83.     Kind = bkOK
  84.   end
  85.   object btnCancel: TBitBtn
  86.     Left = 312
  87.     Top = 96
  88.     Width = 105
  89.     Height = 33
  90.     TabOrder = 3
  91.     OnClick = btnCancelClick
  92.     Kind = bkClose
  93.   end
  94.   object btnHelp: TBitBtn
  95.     Left = 312
  96.     Top = 136
  97.     Width = 105
  98.     Height = 33
  99.     TabOrder = 4
  100.     OnClick = btnHelpClick
  101.     Kind = bkHelp
  102.   end
  103.   object Panel1: TPanel
  104.     Left = 8
  105.     Top = 280
  106.     Width = 297
  107.     Height = 41
  108.     BevelInner = bvLowered
  109.     BevelOuter = bvNone
  110.     TabOrder = 5
  111.     Visible = False
  112.     object Gauge1: TGauge
  113.       Left = 8
  114.       Top = 8
  115.       Width = 281
  116.       Height = 25
  117.       Progress = 0
  118.     end
  119.   end
  120.   object RGroup: TRadioGroup
  121.     Left = 312
  122.     Top = 176
  123.     Width = 105
  124.     Height = 97
  125.     Caption = 'Path'
  126.     Items.Strings = (
  127.       '&Source'
  128.       '&Destination')
  129.     TabOrder = 6
  130.     OnClick = RGroupClick
  131.   end
  132. end
  133.